home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 47.7z / BS1 part 47 / UGA Utilities 6 (1989)(United Graphic Artists)(PD).7z / UGA Utilities 6 (1989)(United Graphic Artists)(PD).adf / .pcmap < prev    next >
Text File  |  1988-01-19  |  1KB  |  52 lines

  1. #
  2. # Simulates PC-like numeric keypad
  3. # ED V1.3 © 1988 by Edgar Törnig
  4.  
  5. # This is the NUMLOCK key
  6. map a-np[   `toggle 32 ifelse 32 `msg ` Numlock on'' `msg ` Numlock off'''
  7.  
  8. # The number keys
  9. map np7     `ifelse 32 $7 first'
  10. map np8     `ifelse 32 $8 up'
  11. map np9     `ifelse 32 $9 pageup'
  12. map np4     `ifelse 32 $4 backward'
  13. map np5     `ifelse 32 $5 `msg Hallo''
  14. map np6     `ifelse 32 $6 right'
  15. map np1     `ifelse 32 $1 last'
  16. map np2     `ifelse 32 $2 down'
  17. map np3     `ifelse 32 $3 pagedown'
  18. map np0     `ifelse 32 $0 `insert toggle''
  19. map np.     `ifelse 32 $. del'
  20.  
  21. # shifted number keys
  22. map s-np7   `ifelse 32 first $7'
  23. map s-np8   `ifelse 32 up $8'
  24. map s-np9   `ifelse 32 pageup $9'
  25. map s-np4   `ifelse 32 backward $4'
  26. map s-np5   `ifelse 32 `msg Hallo' $5'
  27. map s-np6   `ifelse 32 right $6'
  28. map s-np1   `ifelse 32 last $1'
  29. map s-np2   `ifelse 32 down $2'
  30. map s-np3   `ifelse 32 pagedown $3'
  31. map s-np0   `ifelse 32 `insert toggle' $0'
  32. map s-np.   `ifelse 32 del $.'
  33.  
  34. # This is printscreen
  35. map s-np*   `mark !screentop bstart !screenbottom bend copy unblock bwrite prt: tomark'
  36.  
  37. map c-np9   top
  38. map c-np3   bottom
  39.  
  40. # These keys are not available on a PC. Map Amiga standard commands
  41. map a-np0   `prompt `goto ''
  42. map a-np.   `prompt `switch ''
  43. map a-np1   `switch #1'
  44. map a-np2   `switch #2'
  45. map a-np3   `switch #3'
  46. map a-np4   `switch #4'
  47. map a-np5   `switch #5'
  48. map a-np6   `switch #6'
  49. map a-np7   `switch #7'
  50. map a-np8   `switch #8'
  51. map a-np9   `switch #9'
  52.